From: Andreas Schwab Date: Fri, 21 Nov 1997 13:24:40 +0000 (+0000) Subject: Declare finalize_kbd_macro_chars and X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~78775 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=e7900044689018482f8a0a16e0509f9a34802ab4;p=emacs.git Declare finalize_kbd_macro_chars and store_kbd_macro_char. --- diff --git a/src/macros.h b/src/macros.h index 2396514ea23..8f3f003e398 100644 --- a/src/macros.h +++ b/src/macros.h @@ -39,3 +39,12 @@ extern int executing_macro_iterations; so after an error, it describes the innermost interrupted macro. */ extern Lisp_Object executing_macro; + +/* Declare that all chars stored so far in the kbd macro being defined + really belong to it. This is done in between editor commands. */ + +extern void finalize_kbd_macro_chars P_ ((void)); + +/* Store a character into kbd macro being defined */ + +extern void store_kbd_macro_char P_ ((Lisp_Object));